/* ===== HERO SECTION ===== */
.home {
    padding: 6rem 0 4rem;
    background: linear-gradient(to right, #0f0f1c, #1a1a2e);
    color: #ffffff;
  }
  
  .home-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;
  }
  
  .home-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .home-subtitle {
    font-size: 1.1rem;
    color: #00c8ff;
    letter-spacing: 1px;
    font-weight: 500;
  }
  
  .home-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .home-profession {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00e0ff;
  }
  
  .home-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    color: #cdd6f4;
  }
  
  /* Rotating text */
  .text-rotate {
    display: inline-block;
  }
  
  .text-rotate .wrap {
    display: block;
    animation: rotateWords 6s linear infinite;
  }
  
  @keyframes rotateWords {
    0%, 20% { transform: translateY(0); }
    33.33%, 53.33% { transform: translateY(-100%); }
    66.66%, 86.66% { transform: translateY(-200%); }
    100% { transform: translateY(0); }
  }
  
  .home-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  
  .button {
    padding: 0.8rem 2rem;
    background: #00d6cb;
    color: #0f0f1c;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 214, 203, 0.3);
  }
  
  .button:hover {
    background: #00e0ff;
    transform: translateY(-2px);
  }
  
  .button-flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* Hero Image */
  .hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
  }
  